查看原文
其他

深入剖析 Spring 中的构造器注入


点击上方 "程序员小乐" ,关注公众号

8点20分,第一时间与你相约

每日英文

Sometimes, I’d rather feel nothing. It’s better. It’s easier.

有时候我真希望自己没有感觉,那就好过得多了。


每日掏心话

也许时间会夺去你那令人妒忌的容颜,却无法抢走我爱你坚定的信念,因为我有一种无穷而又温柔的力量,它就是一心一意!


来自:Static_lin | 责编:乐乐

链接:blog.csdn.net/qq_41737716

图片来自网络



   正文   



关于更多Spring深度分析的文章,可以点击这里访问。

https://blog.csdn.net/qq_41737716/article/details/84936140

在往期文章中我没有提到在Spring中是如何将Bean注入到构造器,其实这个过程发生在实例化Bean时期,由AbstractAutowireCapableBeanFactory的createBeanInstance方法来做的。

若想快速得到结论,可以参照文末的总结。

1、示例

先来看一个例子,看看什么是构造器注入。

这里我写了一个类,分别有两个构造器,一个是注入一个Bean的构造器,一个是注入两个Bean的构造器:

  1. public class ConstructorAutowiredTest {


  2.    private User user;

  3.    private Role role;


  4.    public ConstructorAutowiredTest() {

  5.    }


  6.    public ConstructorAutowiredTest(User user) {

  7.        this.user = user;

  8.    }


  9.    public ConstructorAutowiredTest(User user, Role role) {

  10.        this.user = user;

  11.        this.role = role;

  12.    }


  13.    public void test(){

  14.        System.out.println("user: "+user);

  15.        System.out.println("role: "+role);

  16.    }

  17. }

Model类User与Role我就不贴代码了,分别是有两个变量,一个id,一个name。

然后就是Spring的配置文件context.xml:

  1. <?xml version="1.0" encoding="UTF-8" ?>

  2. <beans xmlns="http://www.springframework.org/schema/beans"

  3.       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

  4.       xmlns:context="http://www.springframework.org/schema/context"

  5.       xsi:schemaLocation="http://www.springframework.org/schema/beans

  6.       http://www.springframework.org/schema/beans/spring-beans-2.0.xsd

  7.       http://www.springframework.org/schema/context

  8.        http://www.springframework.org/schema/context/spring-context-4.0.xsd ">


  9.    <!-- 使Spring关注Annotation -->

  10.    <context:annotation-config/>


  11.    <bean class="com.mytest.demo.model.Role" id="role">

  12.        <property name="name" value="testRole"/>

  13.        <property name="id" value="2"/>

  14.    </bean>


  15.    <bean class="com.mytest.demo.model.User" id="user">

  16.        <property name="id" value="1"/>

  17.        <property name="name" value="testUser"/>

  18.    </bean>


  19.    <bean class="com.mytest.demo.autowired.ConstructorAutowiredTest" id="test"/>


  20. </beans>

注意,如果需要使用构造器注入,需要 此自定义标签开启(关于自定义标签,在本人往期的Spring系列中有详细介绍),具体作用后面再作分析。

那么,该类三个构造器,Spring会使用哪个构造器初始化ConstructorAutowiredTest这个Bean呢?写个测试便知:

  1. public class TestBeanAutowiredConstructor {


  2.    public static void main(String[] args) {

  3.        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext();

  4.        context.setConfigLocation("context.xml");

  5.        context.refresh();


  6.        ConstructorAutowiredTest test = (ConstructorAutowiredTest) context.getBean("test");

  7.        test.test();

  8.    }

  9. }

执行test方法,控制台打印:

从这里我们可以看出来,此时三个构造器中Spring使用了无参构造器。

我们换一个方式,将无参构造器注释掉,看看Spring到底会使用哪个构造器呢?同样执行test方法测试,控制台打印:

此时控制台报错,大致意思是Bean的实例化失败了,没有无参的构造器方法调用。此时有个疑问,明明构造器中的参数都是Bean,为什么不能初始化,一定要使用无参的构造器呢?是否是因为有两个构造器的原因?此时我们再注释掉任意一个构造函数,使测试类只有一个带参构造函数:

  1. //    public ConstructorAutowiredTest() {

  2. //    }


  3.    public ConstructorAutowiredTest(User user) {

  4.        this.user = user;

  5.    }


  6. //    public ConstructorAutowiredTest(User user, Role role) {

  7. //        this.user = user;

  8. //        this.role = role;

  9. //    }

再次运行测试类,控制台打印:

如果是注释掉第二个构造函数,则结果是两个对象都有。从这里我们可以看出,如果只有一个构造器,且参数为IOC容器中的Bean,将会执行自动注入。这里又有一个疑问,这也太不科学了吧,强制用户一定只能写一个构造器?这时我们猜想@Autowired注解是否能解决这种问题?来试试吧。我们将构造器全部解除注释,将第三个构造器打上@Autowired注解:

  1. public ConstructorAutowiredTest() {

  2. }


  3. public ConstructorAutowiredTest(User user) {

  4.    this.user = user;

  5. }


  6. @Autowired

  7. public ConstructorAutowiredTest(User user, Role role) {

  8.    this.user = user;

  9.    this.role = role;

  10. }

运行测试,控制台打印:

不出所料,@Autowired注解可以解决这种问题,此时Spring将使用有注解的构造函数进行Bean的初始化。那么,如果有两个@Autowired注解呢?结果肯定是报错,因为@Autowired的默认属性required是为true的,也就是说两个required=true的构造器,Spring不知道使用哪一个。但如果是这样写的话:

  1. public ConstructorAutowiredTest() {

  2. }


  3. @Autowired(required = false)

  4. public ConstructorAutowiredTest(User user) {

  5.    this.user = user;

  6. }


  7. @Autowired(required = false)

  8. public ConstructorAutowiredTest(User user, Role role) {

  9.    this.user = user;

  10.    this.role = role;

  11. }

结果是怎样的呢?看看控制台打印:

使用参数最多的那一个构造器来初始化Bean。又如果两个有参构造器顺序调换又是怎样的呢?一个required为false一个为true,结果又是怎样的呢?这里直接给出答案,顺序调换依然使用多参数构造器,并且required只要有一个true就会报错。有兴趣的读者可以自己试试,下面将深入源码分析构造器注入的过程,相信上述所有疑问都能得到解答。

疑问点小结

从现象看本质,我们从上面的例子中,大致可以得到以下几个疑问:

  • 为什么写三个构造器(含有无参构造器),并且没有@Autowired注解,Spring总是使用无参构造器实例化Bean?

  • 为什么注释掉两个构造器,留下一个有参构造器,并且没有@Autowired注解,Spring将会使用构造器注入Bean的方式初始化Bean?

  • 为什么写三个构造器,并且在其中一个构造器上打上@Autowired注解,就可以正常注入构造器?并且两个@Autowired注解就会报错,一定需要在所有@Autowired中的required都加上false即可正常初始化等等?

或许有一些没有提到的疑问点,但大致就这么多吧,举多了也没用,因为在下面深入源码的分析中读者若是可以理解,关于此类的一系列问题都将可以自己思考得出结果,得到可以举一反三的能力。

2、依赖注入伊始

在开头,我们有提到,如果需要构造器注入的功能的话,我们需要在xml配置中写下这样一段代码:

  1. <!-- 使Spring关注Annotation -->

  2. <context:annotation-config/>

如果有看过本人自定义标签或是有自定义标签的基础的读者,第一反应应该是先看自定义标签的context对应的命名空间是哪个:

  1. xmlns:context="http://www.springframework.org/schema/context"

我们全局搜索此命名空间(http后需要加一个斜杆符号\)得到一个spring.handlers文件:

  1. http\://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler

这里说明了此命名空间对应的NamespaceHandler,进入此类看看其init方法:

  1. public void init() {

  2.    registerBeanDefinitionParser("property-placeholder", new PropertyPlaceholderBeanDefinitionParser());

  3.    registerBeanDefinitionParser("property-override", new PropertyOverrideBeanDefinitionParser());

  4.    registerBeanDefinitionParser("annotation-config", new AnnotationConfigBeanDefinitionParser());

  5.    registerBeanDefinitionParser("component-scan", new ComponentScanBeanDefinitionParser());

  6.    registerBeanDefinitionParser("load-time-weaver", new LoadTimeWeaverBeanDefinitionParser());

  7.    registerBeanDefinitionParser("spring-configured", new SpringConfiguredBeanDefinitionParser());

  8.    registerBeanDefinitionParser("mbean-export", new MBeanExportBeanDefinitionParser());

  9.    registerBeanDefinitionParser("mbean-server", new MBeanServerBeanDefinitionParser());

  10. }

我们的自定义标签是叫作 “annotation-config" ,所以对应的解析器是AnnotationConfigBeanDefinitionParser这个类,进入这个类的parse方法:

  1. public BeanDefinition parse(Element element, ParserContext parserContext) {

  2.    Object source = parserContext.extractSource(element);


  3.    // Obtain bean definitions for all relevant BeanPostProcessors.

  4.    //定义一系列BeanDefinition,放入一个Set集合中

  5.    Set<BeanDefinitionHolder> processorDefinitions =

  6.        AnnotationConfigUtils.registerAnnotationConfigProcessors(parserContext.getRegistry(), source);


  7.   //注册一系列BeanDefinition,此处略过..

  8. }

这里只需要关注registerAnnotationConfigProcessors方法,看看到底需要注册哪些Bean:

  1. public static Set<BeanDefinitionHolder> registerAnnotationConfigProcessors(

  2.    BeanDefinitionRegistry registry, @Nullable Object source) {


  3.    //将registry对象转型成beanFactroy

  4.    DefaultListableBeanFactory beanFactory = unwrapDefaultListableBeanFactory(registry);


  5.    Set<BeanDefinitionHolder> beanDefs = new LinkedHashSet<>(8);


  6.    //判断容器中是否已经存在名为AUTOWIRED_ANNOTATION_PROCESSOR_BEAN_NAME的Bean

  7.    if (!registry.containsBeanDefinition(AUTOWIRED_ANNOTATION_PROCESSOR_BEAN_NAME)) {

  8.        //若是不存在,创建一个

  9.        RootBeanDefinition def = new RootBeanDefinition(AutowiredAnnotationBeanPostProcessor.class);

  10.        def.setSource(source);

  11.        beanDefs.add(registerPostProcessor(registry, def, AUTOWIRED_ANNOTATION_PROCESSOR_BEAN_NAME));

  12.    }


  13.    //中途还添加了一系列BeanDefinition,不是本文讨论范围,略过...


  14.    return beanDefs;

  15. }

到这里我们可以知道,此自定义标签注册了一个AutowiredAnnotationBeanPostProcessor类的Bean到IOC容器。那么此类是干什么用的呢?

3、初始化Bean

我们将思路转到IOC容器初始化Bean的流程中来,在getBean方法获取一个Bean的时候,IOC容器才开始将Bean进行初始化,此时会先实例化一个Bean,然后再对Bean进行依赖注入,然后执行一系列初始化的方法,完成Bean的整个初始化过程。而本文讨论的构造器注入,则是在实例化Bean的过程中进行的。

在AbstractAutowireCapableBeanFactory类中的doCreateBean方法获取Bean的开始,将调用createBeanInstance方法进行Bean的实例化(选择Bean使用哪个构造器实例化):

  1. protected BeanWrapper createBeanInstance(String beanName, RootBeanDefinition mbd, @Nullable Object[] args) {


  2.    //略过一些与本文无关的其他实例化的方式的代码...


  3.    // Candidate constructors for autowiring?

  4.    // 查找是否存在候选的自动注入构造器

  5.    Constructor<?>[] ctors = determineConstructorsFromBeanPostProcessors(beanClass, beanName);

  6.    if (ctors != null || mbd.getResolvedAutowireMode() == AUTOWIRE_CONSTRUCTOR ||

  7.        mbd.hasConstructorArgumentValues() || !ObjectUtils.isEmpty(args)) {

  8.        //使用注入的方式调用构造器实例化

  9.        return autowireConstructor(beanName, mbd, ctors, args);

  10.    }


  11.    // No special handling: simply use no-arg constructor.

  12.    //使用无参构造器实例化(利用反射newInstance)

  13.    return instantiateBean(beanName, mbd);

  14. }

到这里我们可以知道,determineConstructorsFromBeanPostProcessors方法将选择是否有适合的自动注入构造器,如果没有,将使用无参构造器实例化,关键就在这个方法中,是如何判断哪些构造器使用自动注入的呢:

  1. protected Constructor<?>[] determineConstructorsFromBeanPostProcessors(@Nullable Class<?> beanClass, String beanName)

  2.    throws BeansException {


  3.    //容器中若存在InstantiationAwareBeanPostProcessors

  4.    if (beanClass != null && hasInstantiationAwareBeanPostProcessors()) {

  5.        //遍历此BeanPostProcessors

  6.        for (BeanPostProcessor bp : getBeanPostProcessors()) {

  7.            //只使用SmartInstantiationAwareBeanPostProcessor类型

  8.            if (bp instanceof SmartInstantiationAwareBeanPostProcessor) {

  9.                SmartInstantiationAwareBeanPostProcessor ibp = (SmartInstantiationAwareBeanPostProcessor) bp;

  10.                Constructor<?>[] ctors = ibp.determineCandidateConstructors(beanClass, beanName);

  11.                if (ctors != null) {

  12.                    return ctors;

  13.                }

  14.            }

  15.        }

  16.    }

  17.    return null;

  18. }

这段代码告诉我们,这里会使用SmartInstantiationAwareBeanPostProcessor类型的BeanPostProcessor进行判断,我们回顾一下上面的依赖注入伊始的时候我们说的自定义标签注册的类的结构:

有看过本人关于Sprng扩展篇的文章或是有Spring扩展点基础的读者,应该可以知道,若是注册一个BeanPostProcessor到IOC容器中,在AbstractApplicationContext中的refresh方法会对这些类型的Bean进行处理,存放在一个集合,此时getBeanPostProcessors方法就可以获取到所有BeanPostProcessor集合,遍历集合,便可以调用到我们自定义标签中注册的这个类型的Bean。

当然,SmartInstantiationAwareBeanPostProcessor类型的Bean有很多,但依赖注入是使用上述这个Bean来完成的。回到主线,下面会调用它的determineCandidateConstructors方法进行查找对应构造器(核心方法):

  1. public Constructor<?>[] determineCandidateConstructors(Class<?> beanClass, final String beanName)

  2.    throws BeanCreationException {


  3.    //略..


  4.    // Quick check on the concurrent map first, with minimal locking.

  5.    //先查找缓存

  6.    Constructor<?>[] candidateConstructors = this.candidateConstructorsCache.get(beanClass);

  7.    //若是缓存中没有

  8.    if (candidateConstructors == null) {

  9.        // Fully synchronized resolution now...

  10.        //同步此方法

  11.        synchronized (this.candidateConstructorsCache) {

  12.            candidateConstructors = this.candidateConstructorsCache.get(beanClass);

  13.            //双重判断,避免多线程并发问题

  14.            if (candidateConstructors == null) {

  15.                Constructor<?>[] rawCandidates;

  16.                try {

  17.                    //获取此Bean的所有构造器

  18.                    rawCandidates = beanClass.getDeclaredConstructors();

  19.                }

  20.                catch (Throwable ex) {

  21.                    throw new BeanCreationException(beanName,

  22.                                                    "Resolution of declared constructors on bean Class [" + beanClass.getName() +

  23.                                                    "] from ClassLoader [" + beanClass.getClassLoader() + "] failed", ex);

  24.                }

  25.                //最终适用的构造器集合

  26.                List<Constructor<?>> candidates = new ArrayList<>(rawCandidates.length);

  27.                //存放依赖注入的required=true的构造器

  28.                Constructor<?> requiredConstructor = null;

  29.                //存放默认构造器

  30.                Constructor<?> defaultConstructor = null;

  31.                Constructor<?> primaryConstructor = BeanUtils.findPrimaryConstructor(beanClass);

  32.                int nonSyntheticConstructors = 0;

  33.                for (Constructor<?> candidate : rawCandidates) {

  34.                    if (!candidate.isSynthetic()) {

  35.                        nonSyntheticConstructors++;

  36.                    }

  37.                    else if (primaryConstructor != null) {

  38.                        continue;

  39.                    }

  40.                    //查找当前构造器上的注解

  41.                    AnnotationAttributes ann = findAutowiredAnnotation(candidate);

  42.                    //若没有注解

  43.                    if (ann == null) {

  44.                        Class<?> userClass = ClassUtils.getUserClass(beanClass);

  45.                        if (userClass != beanClass) {

  46.                            try {

  47.                                Constructor<?> superCtor =

  48.                                    userClass.getDeclaredConstructor(candidate.getParameterTypes());

  49.                                ann = findAutowiredAnnotation(superCtor);

  50.                            }

  51.                            catch (NoSuchMethodException ex) {

  52.                                // Simply proceed, no equivalent superclass constructor found...

  53.                            }

  54.                        }

  55.                    }

  56.                    //若有注解

  57.                    if (ann != null) {

  58.                        //已经存在一个required=true的构造器了,抛出异常

  59.                        if (requiredConstructor != null) {

  60.                            throw new BeanCreationException(beanName,

  61.                                                            "Invalid autowire-marked constructor: " + candidate +

  62.                                                            ". Found constructor with 'required' Autowired annotation already: " +

  63.                                                            requiredConstructor);

  64.                        }

  65.                        //判断此注解上的required属性

  66.                        boolean required = determineRequiredStatus(ann);

  67.                        //若为true

  68.                        if (required) {

  69.                            if (!candidates.isEmpty()) {

  70.                                throw new BeanCreationException(beanName,

  71.                                                                "Invalid autowire-marked constructors: " + candidates +

  72.                                                                ". Found constructor with 'required' Autowired annotation: " +

  73.                                                                candidate);

  74.                            }

  75.                            //将当前构造器加入requiredConstructor集合

  76.                            requiredConstructor = candidate;

  77.                        }

  78.                        //加入适用的构造器集合中

  79.                        candidates.add(candidate);

  80.                    }

  81.                    //如果该构造函数上没有注解,再判断构造函数上的参数个数是否为0

  82.                    else if (candidate.getParameterCount() == 0) {

  83.                        //如果没有参数,加入defaultConstructor集合

  84.                        defaultConstructor = candidate;

  85.                    }

  86.                }

  87.                //适用的构造器集合若不为空

  88.                if (!candidates.isEmpty()) {

  89.                    // Add default constructor to list of optional constructors, as fallback.

  90.                    //若没有required=true的构造器

  91.                    if (requiredConstructor == null) {

  92.                        if (defaultConstructor != null) {

  93.                            //将defaultConstructor集合的构造器加入适用构造器集合

  94.                            candidates.add(defaultConstructor);

  95.                        }

  96.                        else if (candidates.size() == 1 && logger.isInfoEnabled()) {

  97.                            logger.info("Inconsistent constructor declaration on bean with name '" + beanName +

  98.                                        "': single autowire-marked constructor flagged as optional - " +

  99.                                        "this constructor is effectively required since there is no " +

  100.                                        "default constructor to fall back to: " + candidates.get(0));

  101.                        }

  102.                    }

  103.                    //将适用构造器集合赋值给将要返回的构造器集合

  104.                    candidateConstructors = candidates.toArray(new Constructor<?>[0]);

  105.                }

  106.                //如果适用的构造器集合为空,且Bean只有一个构造器并且此构造器参数数量大于0

  107.                else if (rawCandidates.length == 1 && rawCandidates[0].getParameterCount() > 0) {

  108.                    //就使用此构造器来初始化

  109.                    candidateConstructors = new Constructor<?>[] {rawCandidates[0]};

  110.                }

  111.                //如果构造器有两个,且默认构造器不为空

  112.                else if (nonSyntheticConstructors == 2 && primaryConstructor != null &&

  113.                         defaultConstructor != null && !primaryConstructor.equals(defaultConstructor)) {

  114.                    //使用默认构造器返回

  115.                    candidateConstructors = new Constructor<?>[] {primaryConstructor, defaultConstructor};

  116.                }

  117.                else if (nonSyntheticConstructors == 1 && primaryConstructor != null) {

  118.                    candidateConstructors = new Constructor<?>[] {primaryConstructor};

  119.                }

  120.                else {

  121.                    //上述都不符合的话,只能返回一个空集合了

  122.                    candidateConstructors = new Constructor<?>[0];

  123.                }

  124.                //放入缓存,方便下一次调用

  125.                this.candidateConstructorsCache.put(beanClass, candidateConstructors);

  126.            }

  127.        }

  128.    }

  129.    //返回candidateConstructors集合,若为空集合返回null

  130.    return (candidateConstructors.length > 0 ? candidateConstructors : null);

  131. }

从这段核心代码我们可以看出几个要点:

在没有@Autowired注解的情况下:

  • 无参构造器将直接加入defaultConstructor集合中。

  • 在构造器数量只有一个且有参数时,此唯一有参构造器将加入candidateConstructors集合中。

  • 在构造器数量有两个的时候,并且存在无参构造器,将defaultConstructor(第一条的无参构造器)放入candidateConstructors集合中。

  • 在构造器数量大于两个,并且存在无参构造器的情况下,将返回一个空的candidateConstructors集合,也就是没有找到构造器。

在有@Autowired注解的情况下:

  • 判断required属性:

true:先判断requiredConstructor集合是否为空,若不为空则代表之前已经有一个required=true的构造器了,两个true将抛出异常,再判断candidates集合是否为空,若不为空则表示之前已经有一个打了注解的构造器,此时required又是true,抛出异常。若两者都不为空将放入requiredConstructor集合中,再放入candidates集合中。

false:直接放入candidates集合中。

  • 判断requiredConstructor集合是否为空(是否存在required=true的构造器),若没有,将默认构造器也放入candidates集合中。

  • 最后将上述candidates赋值给最终返回的candidateConstructors集合。

4、总结

综上所述,我们可以回答开篇疑问点小结所总结的一系列问题了:

为什么写三个构造器(含有无参构造器),并且没有@Autowired注解,Spring总是使用无参构造器实例化Bean?

答:参照没有注解的处理方式:若构造器只有两个,且存在无参构造器,将直接使用无参构造器初始化。若大于两个构造器,将返回一个空集合,也就是没有找到合适的构造器,那么参照第三节初始化Bean的第一段代码createBeanInstance方法的末尾,将会使用无参构造器进行实例化。这也就解答了为什么没有注解,Spring总是会使用无参的构造器进行实例化Bean,并且此时若没有无参构造器会抛出异常,实例化Bean失败。

为什么注释掉两个构造器,留下一个有参构造器,并且没有@Autowired注解,Spring将会使用构造器注入Bean的方式初始化Bean?

答:参照没有注解的处理方式:构造器只有一个且有参数时,将会把此构造器作为适用的构造器返回出去,使用此构造器进行实例化,参数自然会从IOC中获取Bean进行注入。

为什么写三个构造器,并且在其中一个构造器上打上@Autowired注解,就可以正常注入构造器?

答:参照有注解的处理方式:在最后判断candidates适用的构造器集合是否为空时,若有注解,此集合当然不为空,且required=true,也不会将默认构造器集合defaultConstructor加入candidates集合中,最终返回的是candidates集合的数据,也就是这唯一一个打了注解的构造器,所以最终使用此打了注解的构造器进行实例化。

两个@Autowired注解就会报错,一定需要在所有@Autowired中的required都加上false即可正常初始化?

答:参照有注解的处理方式:当打了两个@Autowired注解,也就是两个required都为true,将会抛出异常,若是一个为true,一个为false,也将会抛出异常,无论顺序,因为有两层的判断,一个是requiredConstructor集合是否为空的判断,一个是candidates集合为空的判断,若两个构造器的required属性都为false,不会进行上述判断,直接放入candidates集合中,并且在下面的判断中会将defaultConstructor加入到candidates集合中,也就是candidates集合有三个构造器,作为结果返回。

至于第四条结论,返回的构造器若有三个,Spring将如何判断使用哪一个构造器呢?在后面Spring会遍历三个构造器,依次判断参数是否是Spring的Bean(是否被IOC容器管理),若参数不是Bean,将跳过判断下一个构造器,也就是说,例如上述两个参数的构造器其中一个参数不是Bean,将判断一个参数的构造器,若此参数是Bean,使用一个参数的构造器实例化,若此参数不是Bean,将使用无参构造器实例化。

也就是说,若使用@Autowired注解进行构造器注入,required属性都设置为false的话,将避免无Bean注入的异常,使用无参构造器正常实例化。若两个参数都是Bean,则就直接使用两个参数的构造器进行实例化并获取对应Bean注入构造器。

在这里最后说一点,从上面可以看出,若想使用构造器注入功能,最好将要注入的构造器都打上@Autowired注解(若有多个需要注入的构造器,将所有@Autowired中required属性都设置为false),若有多个构造器,只有一个构造器需要注入,将这个构造器打上@Autowired注解即可,不用设置required属性。

如果不打注解也是可以使用构造器注入功能的,但构造器数量只能为1,且代码可读性较差,读代码的人并不知道你这里使用了构造器注入的方式,所以这里我建议若使用构造器注入打上@Autowired注解会比较好一点。

本文讲述了从自定义注册Bean开始,到解析IOC容器初始化Bean的判断的一系列过程,从现象看本质,分析了Spring中的构造器注入的原理,并且分析了各种情况,相信理解了的读者将来遇到这类的别的问题可以独立思考出答案。

欢迎在留言区留下你的观点,一起讨论提高。如果今天的文章让你有新的启发,学习能力的提升上有新的认识,欢迎转发分享给更多人。


欢迎各位读者加入程序员小乐技术群,在公众号后台回复“加群”或者“学习”即可。


猜你还想看


阿里、腾讯、百度、华为、京东最新面试题汇集

当我们遇到100亿次请求?该如何设计后端架构?

高中就开始学的正态分布,原来如此重要

一个合格的技术面试官是怎么样的?

百度地震了,也许早晚的事

Google 程序员有哪些高效的编程习惯?

关注「程序员小乐」,收看更多精彩内容

    您可能也对以下帖子感兴趣

    文章有问题?点此查看未经处理的缓存